Method MigrateAsync<TProps, TMigration>(IRedbService, ISqlDialectPro, bool, string?)

Assembly: redb.Core.Pro.dll

Execute migration for Props type.
Example:
await redb.MigrateAsync<OrderProps, OrderPropsMigration>(dialect);

public static Task<List<MigrationResult>> MigrateAsync<TProps, TMigration>(this IRedbService redb, ISqlDialectPro dialect, bool dryRun = false, string? appliedBy = null) where TProps : class where TMigration : IRedbMigration<TProps>, new()